home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-12-16 | 1.3 KB | 51 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: PRStrRep.h
- // Release Version: $ ODF 3 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef PRSTRREP_H
- #define PRSTRREP_H
-
- #ifndef FWODEXCE_H
- #include "FWODExce.h"
- #endif
-
- #ifndef FWSTDDEF_H
- #include "FWStdDef.h"
- #endif
-
- #ifndef SLSTRREP_H
- #include "SLStrRep.h"
- #endif
-
- #ifndef SLTXTPAR_H
- #include "SLTxtPar.h"
- #endif
-
- #ifndef FWODTYPS_H
- #include "FWODTyps.h"
- #endif
-
- //========================================================================================
- // STRUCT FW_SPrivStringRep
- //========================================================================================
-
- // The definition of this structure changed between ODF Release 2 and Release 3. In ODF
- // Releases prior to 3, this structure contained an fUsingStaticBuffer data member that
- // indicated whether or not the representation object referenced a buffer on the stack.
- // In release 3, support for stack-based string buffers was eliminated.
-
- struct FW_SPrivStringRep
- {
- ODIText fText;
- FW_ODITextParams fParams;
- long fRefCount;
- FW_Boolean fLocked;
- };
-
- #endif
-